home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2.0 - Programmer's Utilities Power Pack / Delphi 2.0 Programmer's Utilities Power Pack.iso / m_to_r / resizer2 / resize.dpr < prev    next >
Encoding:
Text File  |  1996-09-15  |  163 b   |  13 lines

  1. program Resize;
  2.  
  3. uses
  4.   Forms,
  5.   Resizef in 'RESIZEF.PAS' {Form1};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.CreateForm(TForm1, Form1);
  11.   Application.Run;
  12. end.
  13.